home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
ms_dos
/
gds
/
source
/
gds103.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Windows-1254 (detected)
Wrap
C/C++ Source or Header
|
1993-07-08
|
319 b
|
20 lines
/*
*
* GDS103 : 全画面の消去
*
*/
#include <stdio.h>
#include <dos.h>
unsigned int GDS_all_clear(void) {
union REGS inregs, outregs;
struct SREGS segregs;
segread(&segregs);
inregs.x.ax=0x8400;
int86x(0x92,&inregs,&outregs,&segregs);
return (unsigned int)outregs.h.ah;
}